home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 010a / chkfrg14.zip / DEFRAG.BAT < prev   
DOS Batch File  |  1989-08-11  |  448b  |  26 lines

  1. ECHO off
  2. CLS
  3. ECHO Checking condition of drive %1 ...
  4.  
  5. chkdsk %1/F >lpt1:
  6.  
  7. chkfrag %1 /L >lpt1:
  8. IF ERRORLEVEL 255 GOTO error
  9. IF ERRORLEVEL 24  GOTO defrag
  10. goto nodefrag
  11.  
  12. :defrag
  13. ECHO Drive %1 fragmented 25% or more .. starting defrag
  14. defragit %1>lpt1    *** Replace with your utility ***
  15. GOTO end
  16.  
  17. :nodefrag
  18. ECHO Drive %1 does not require defragging
  19. GOTO end
  20.  
  21. :error
  22. ECHO Error occured during CHKFRAG.
  23.  
  24. :end
  25. ECHO DEFRAG done.
  26.